home *** CD-ROM | disk | FTP | other *** search
/ The Canadian & World Encyclopedia 1998 / The Canadian & World Encyclopedia 1998 - Disc 2.iso / mac / prime_CD / pb / PREVIEW.DIR / 00116_Script_HM_latch < prev    next >
Text File  |  1997-07-22  |  374b  |  10 lines

  1. global gQTChan, gHMvideoManager
  2. on exitFrame
  3.   -- scan index for next clip
  4.   repeat with i = 1 to the pClipListCount of gHMvideoManager
  5.     set nextStartTime = getpropat(the pClipList of gHMvideoManager, i) 
  6.     if nextStartTime > the movieTime of sprite gQTchan then exit repeat
  7.   end repeat
  8.   go "hm_" & string(getat(the pClipList of gHMvideoManager, i - 1))
  9. end
  10.